home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / share / dos / demos / planets / source.lzh / PLANET.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-20  |  680 b   |  29 lines

  1.  
  2. /*
  3.  *  PLANET.H
  4.  *
  5.  *  (Simon Hern, 1994)
  6.  *
  7.  *  Dead short header file for Bouncing Planets animation
  8.  *
  9.  *  The constant RHO (that's the greek letter, not some dumb TLA) is defined
  10.  *  And not much else
  11.  *
  12.  *  This file is included in the PLANETS.C, MAKEGUSH.C and MAKEXION.C modules
  13.  *
  14.  */
  15.  
  16. #ifndef PLANET_H
  17. #define PLANET_H
  18.  
  19. /* Resolution of a planet's surface: the number of 'pixels' on a */
  20. /*  line from the north pole to the south pole                   */
  21. /* (Resolutions other than RHO=128 are not actually supported,   */
  22. /*  so this is all a bit futile really)                          */
  23. #define RHO 128
  24.  
  25. #define PI 3.141592654L
  26.  
  27. #endif
  28.  
  29.